-
Notifications
You must be signed in to change notification settings - Fork 6.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
samples: drivers: video: capture: Add format config #77879
samples: drivers: video: capture: Add format config #77879
Conversation
The following west manifest projects have been modified in this Pull Request:
Note: This message is automatically posted and updated by the Manifest GitHub Action. |
c9181a8
to
a8161f7
Compare
a8161f7
to
27f4438
Compare
417cbf6
2cd5d37
to
417cbf6
Compare
config VIDEO_FORMAT_HEIGHT | ||
int "Height of the video format" | ||
default 0 | ||
help | ||
Height of the video format. If set to 0, the default height is used. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is very oddly worded?
config VIDEO_FORMAT_HEIGHT | |
int "Height of the video format" | |
default 0 | |
help | |
Height of the video format. If set to 0, the default height is used. | |
config VIDEO_FRAME_HEIGHT | |
int "Height of the video frames" | |
default 0 | |
help | |
Height of the video frames. If set to 0, the default height is used. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@kartben nice catch!
config VIDEO_FORMAT_WIDTH | ||
int "Width of the video format" | ||
default 0 | ||
help | ||
Width of the video format. If set to 0, the default width is used. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ditto
config VIDEO_PIXEL_FORMAT | ||
string "Pixel format of the video format" | ||
help | ||
Pixel format of the video format. If not set, the default pixel format is used. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
config VIDEO_PIXEL_FORMAT | |
string "Pixel format of the video format" | |
help | |
Pixel format of the video format. If not set, the default pixel format is used. | |
config VIDEO_PIXEL_FORMAT | |
string "Pixel format of the video frames" | |
help | |
Pixel format of the video frames. If not set, the default pixel format is used. |
Add video format Kconfig for proper sample configuration. Signed-off-by: Lucas Tamborrino <[email protected]>
Fix build warning for unused variables. Signed-off-by: Lucas Tamborrino <[email protected]>
Add video as supported feature. Signed-off-by: Lucas Tamborrino <[email protected]>
Add support for esp32s3-eye board. Signed-off-by: Lucas Tamborrino <[email protected]>
502d63e
417cbf6
to
502d63e
Compare
Add video format Kconfig for proper sample configuration.